A proof-of-work (POW) system (or protocol, or function) is an economic measure to deter denial of service attacks and other service abuses such as spam on a network by requiring some work from the service requester, usually meaning processing time by a computer. A key feature of these schemes is their asymmetry: the work must be moderately hard (but feasible) on the requester side but easy to check for the service provider. This idea is also named Client Puzzle Protocol (CPP). It is distinct from a CAPTCHA, which is intended for a human to solve quickly, rather than a computer.
One popular system is Hashcash, which uses partial hash inversions to prove that work was done, as a good-will token to send an e-mail. For instance the following header represents about 240 hash computations to send a message to hobbes@comics
on March 19, 2017:
X-Hashcash: 1:40:170319:hobbes@comics::eb9a45d0eac8b65a:159b56eb15c
It is verified with a single computation by checking that its SHA-1 hash begins with 40 binary zeros, that is 10 hexadecimal zeros: 00000000009f0b34697d40bf80d000a3a0646cd9
Whether POW systems can actually solve a particular denial-of-service issue such as the spam problem is subject to debate:[1][2] on the one hand the system must make sending spams obtrusively unproductive for the spammer, but on the other hand it should not prevent legitimate users from sending their messages.
Contents |
There are two classes of proof-of-work protocols.
Moreover, the underlying functions used by these schemes may be:
Finally, some POW systems offer shortcut computations that allow participants who know a secret, typically a private key, to generate cheap POWs. The rationale is that mailing-list holders may generate stamps for every recipient without incurring a high cost. Whether such a feature is desirable depends on the usage scenario.
Here is a (preliminary) list of proof-of-work functions.
Computer scientist Hal Finney has built on the proof-of-work idea, yielding a system called reusable proof of work ("RPOW").[17]
The easiest way to understand RPOW is to view it as a form of token money. It is in fact the only form of digital token money invulnerable to inflation caused by greedy or untrustworthy mints issuing more tokens than they said they would issue.
In this aspect it resembles the gold coin: an issuer of gold coins cannot unfairly profit by minting extra gold coins because in a well-run gold-coin currency, obtaining the gold to make the extra coins has a cost approximately equal to the revenue or benefit gained by the minting of the coins. Moreover, this cost (i.e., the price of gold) is knowable or predictable by anyone.
Just as a gold coin's value is in an important sense guaranteed by the value of the raw gold needed to make it, the value of an RPOW token is guaranteed by the value of a POW token. (In Finney's version of RPOW, that POW token is a piece of hashcash.)
The property that makes the gold coin and the RPOW token invulnerable to cheating by the nominal issuer of the currency also of course makes it invulnerable to counterfeiting.
Since the cost of creating a POW token decreases as a function of time in a fairly predictable way, e.g., by a steady logarithmic decay sometimes called Moore's law, it is impractical to hold onto a POW or RPOW token for years as a form of savings. Still, these tokens are quite useful and stable when used as a form of exchange.
An operator of a website that offers some benefit or service that many people are highly motivated to use can demand a POW token in exchange for this benefit. In fact, there are often good reasons for doing so. The benefit almost always entails the consumption of certain resources, like bandwidth to the Internet, computation or disk space that have a definite cost. Demanding a POW token prevents Internet users from making frivolous or excessive use of the service (and consequently of the resources underlying the service).
Parenthetically, most people do not yet have software installed on their computer to mint POW tokens, but this could easily change.
An RPOW system differs from a POW system in that after someone has "spent" a POW token at my web site, I have the option of exchanging that "spent" POW token for a new, unspent RPOW token, which I can then spend at some third party's web site (provided of course that that web site has been set up to accept RPOW tokens). This saves me the computational resources I would have otherwise needed to mint a POW token.
This third party can in turn exchange that spent RPOW for a new, unspent one of equal value.
The anti-counterfeit/anti-inflationary property of the RPOW token is guaranteed by a technique called remote attestation. In particular, the RPOW server, the Internet server that exchanges a used POW or RPOW token for a new one of equal value, uses remote attestation to allow any sufficiently knowledgeable and interested party to verify what software is running on the RPOW server. Since the source code for this software has been published (under a BSD-like license), any sufficiently knowledgeable programmer can, by inspecting this source code, satisfy himself that the software and, by extension, the RPOW server never issue a new token except in exchange for a spent token of equal value.
Until recently, Finney's system is the only RPOW system to have been implemented so far, and it has not yet seen economically significant use. It is implemented as 12,000 lines of C code.
In 2009, the Bitcoin network went online. Bitcoin is a proof-of-work crypto currency developed on top of a decentralized P2P network. Tokens are "mined" by individual nodes and verified by the network. Approximately 8M of the ultimately 21M bitcoins have been mined as of January 2012.[18][19]